1
0
Fork 0
flightgear/src/FDM/JSBSim/FGOutput.cpp

418 lines
12 KiB
C++
Raw Normal View History

2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
Module: FGOutput.cpp
Author: Jon Berndt
Date started: 12/02/98
Purpose: Manage output of sim parameters to file or stdout
Called by: FGSimExec
------------- Copyright (C) 1999 Jon S. Berndt (jsb@hal-pc.org) -------------
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place - Suite 330, Boston, MA 02111-1307, USA.
Further information about the GNU General Public License can also be found on
the world wide web at http://www.gnu.org.
FUNCTIONAL DESCRIPTION
--------------------------------------------------------------------------------
This is the place where you create output routines to dump data for perusal
2000-05-02 18:25:30 +00:00
later.
1999-02-05 21:26:01 +00:00
HISTORY
--------------------------------------------------------------------------------
12/02/98 JSB Created
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
INCLUDES
2000-11-03 23:02:47 +00:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-02-05 21:26:01 +00:00
#include "FGOutput.h"
#include "FGState.h"
#include "FGFDMExec.h"
#include "FGAtmosphere.h"
#include "FGFCS.h"
#include "FGAerodynamics.h"
#include "FGGroundReactions.h"
#include "FGAircraft.h"
#include "FGMassBalance.h"
#include "FGTranslation.h"
#include "FGRotation.h"
#include "FGPosition.h"
#include "FGAuxiliary.h"
2001-03-30 01:04:50 +00:00
static const char *IdSrc = "$Id$";
static const char *IdHdr = ID_OUTPUT;
2000-11-03 23:02:47 +00:00
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
CLASS IMPLEMENTATION
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
1999-02-05 21:26:01 +00:00
FGOutput::FGOutput(FGFDMExec* fdmex) : FGModel(fdmex)
1999-02-05 21:26:01 +00:00
{
Name = "FGOutput";
1999-12-20 20:24:49 +00:00
sFirstPass = dFirstPass = true;
2000-01-10 21:07:00 +00:00
socket = 0;
2000-05-02 18:25:30 +00:00
Type = otNone;
Filename = "JSBSim.out";
SubSystems = 0;
enabled = true;
2000-05-02 18:25:30 +00:00
2000-01-11 17:26:43 +00:00
#ifdef FG_WITH_JSBSIM_SOCKET
1999-12-20 20:24:49 +00:00
socket = new FGfdmSocket("localhost",1138);
2000-01-11 17:26:43 +00:00
#endif
2001-03-30 01:04:50 +00:00
if (debug_lvl & 2) cout << "Instantiated: " << Name << endl;
1999-02-05 21:26:01 +00:00
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
2001-03-30 01:04:50 +00:00
FGOutput::~FGOutput()
1999-02-05 21:26:01 +00:00
{
1999-12-20 20:24:49 +00:00
if (socket) delete socket;
2001-03-30 01:04:50 +00:00
if (debug_lvl & 2) cout << "Destroyed: FGOutput" << endl;
1999-02-05 21:26:01 +00:00
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
bool FGOutput::Run(void)
{
2000-10-02 23:07:30 +00:00
if (enabled) {
if (!FGModel::Run()) {
if (Type == otSocket) {
SocketOutput();
} else if (Type == otCSV) {
DelimitedOutput(Filename);
2000-10-02 23:07:30 +00:00
} else if (Type == otTerminal) {
// Not done yet
} else if (Type == otNone) {
// Do nothing
2000-05-02 18:25:30 +00:00
} else {
2000-10-02 23:07:30 +00:00
// Not a valid type of output
2000-05-02 18:25:30 +00:00
}
2000-10-02 23:07:30 +00:00
2000-05-02 18:25:30 +00:00
} else {
}
1999-02-05 21:26:01 +00:00
}
return false;
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-02-05 21:26:01 +00:00
2000-05-02 18:25:30 +00:00
void FGOutput::SetType(string type)
{
if (type == "CSV") {
Type = otCSV;
} else if (type == "TABULAR") {
Type = otTab;
} else if (type == "SOCKET") {
Type = otSocket;
} else if (type == "TERMINAL") {
Type = otTerminal;
} else if (type != "NONE"){
Type = otUnknown;
cerr << "Unknown type of output specified in config file" << endl;
}
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2000-05-02 18:25:30 +00:00
void FGOutput::DelimitedOutput(string fname)
1999-02-05 21:26:01 +00:00
{
# if defined(sgi) && !defined(__GNUC__)
ostream_withassign outstream;
# else
_IO_ostream_withassign outstream;
# endif
if (fname == "COUT" || fname == "cout") {
outstream = cout;
} else {
datafile.open(fname.c_str());
outstream = datafile;
}
1999-12-20 20:24:49 +00:00
if (dFirstPass) {
outstream << "Time";
2000-05-02 18:25:30 +00:00
if (SubSystems & FGAircraft::ssSimulation) {
// Nothing here, yet
}
if (SubSystems & FGAircraft::ssAerosurfaces) {
outstream << ", ";
outstream << "Throttle, ";
outstream << "Mixture, ";
outstream << "Aileron Cmd, ";
outstream << "Elevator Cmd, ";
outstream << "Rudder Cmd, ";
outstream << "Aileron Pos, ";
outstream << "Elevator Pos, ";
outstream << "Rudder Pos";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssRates) {
outstream << ", ";
outstream << "P, Q, R";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssVelocities) {
outstream << ", ";
outstream << "QBar, ";
outstream << "Vtotal, ";
outstream << "UBody, VBody, WBody, ";
outstream << "UAero, VAero, WAero, ";
outstream << "Vn, Ve, Vd";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssForces) {
outstream << ", ";
outstream << "Drag, Side, Lift, ";
outstream << "L/D, ";
outstream << "Xforce, Yforce, Zforce";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssMoments) {
outstream << ", ";
outstream << "L, M, N";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssAtmosphere) {
outstream << ", ";
outstream << "Rho";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssMassProps) {
outstream << ", ";
outstream << "Ixx, ";
outstream << "Iyy, ";
outstream << "Izz, ";
outstream << "Ixz, ";
outstream << "Mass, ";
outstream << "Xcg, Ycg, Zcg";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssPosition) {
outstream << ", ";
outstream << "Altitude, ";
outstream << "Phi, Tht, Psi, ";
outstream << "Alpha, ";
outstream << "Latitude, ";
outstream << "Longitude, ";
outstream << "Distance AGL, ";
outstream << "Runway Radius";
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssCoefficients) {
outstream << ", ";
outstream << Aerodynamics->GetCoefficientStrings();
2000-05-02 18:25:30 +00:00
}
2000-05-27 05:48:14 +00:00
if (SubSystems & FGAircraft::ssGroundReactions) {
outstream << ", ";
outstream << GroundReactions->GetGroundReactionStrings();
2000-05-27 05:48:14 +00:00
}
2001-04-06 22:59:31 +00:00
if (SubSystems & FGAircraft::ssPropulsion) {
outstream << ", ";
outstream << Propulsion->GetPropulsionStrings();
2001-04-06 22:59:31 +00:00
}
2000-05-02 18:25:30 +00:00
outstream << endl;
1999-12-20 20:24:49 +00:00
dFirstPass = false;
1999-02-05 21:26:01 +00:00
}
1999-07-31 04:55:23 +00:00
outstream << State->Getsim_time();
2000-05-02 18:25:30 +00:00
if (SubSystems & FGAircraft::ssSimulation) {
}
if (SubSystems & FGAircraft::ssAerosurfaces) {
outstream << ", ";
outstream << FCS->GetThrottlePos(0) << ", ";
outstream << FCS->GetMixturePos(0) << ", ";
outstream << FCS->GetDaCmd() << ", ";
outstream << FCS->GetDeCmd() << ", ";
outstream << FCS->GetDrCmd() << ", ";
outstream << FCS->GetDaPos() << ", ";
outstream << FCS->GetDePos() << ", ";
outstream << FCS->GetDrPos();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssRates) {
outstream << ", ";
outstream << Rotation->GetPQR();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssVelocities) {
outstream << ", ";
outstream << Translation->Getqbar() << ", ";
outstream << Translation->GetVt() << ", ";
outstream << Translation->GetUVW() << ", ";
outstream << Translation->GetvAero() << ", ";
outstream << Position->GetVel();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssForces) {
outstream << ", ";
outstream << Aerodynamics->GetvFs() << ", ";
outstream << Aerodynamics->GetLoD() << ", ";
outstream << Aircraft->GetForces();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssMoments) {
outstream << ", ";
outstream << Aircraft->GetMoments();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssAtmosphere) {
outstream << ", ";
outstream << Atmosphere->GetDensity();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssMassProps) {
outstream << ", ";
outstream << MassBalance->GetIxx() << ", ";
outstream << MassBalance->GetIyy() << ", ";
outstream << MassBalance->GetIzz() << ", ";
outstream << MassBalance->GetIxz() << ", ";
outstream << MassBalance->GetMass() << ", ";
outstream << MassBalance->GetXYZcg();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssPosition) {
outstream << ", ";
outstream << Position->Geth() << ", ";
outstream << Rotation->GetEuler() << ", ";
outstream << Translation->Getalpha() << ", ";
outstream << Position->GetLatitude() << ", ";
outstream << Position->GetLongitude() << ", ";
outstream << Position->GetDistanceAGL() << ", ";
outstream << Position->GetRunwayRadius();
2000-05-02 18:25:30 +00:00
}
if (SubSystems & FGAircraft::ssCoefficients) {
outstream << ", ";
outstream << Aerodynamics->GetCoefficientValues();
2000-05-02 18:25:30 +00:00
}
2000-05-27 05:48:14 +00:00
if (SubSystems & FGAircraft::ssGroundReactions) {
outstream << ", ";
outstream << GroundReactions->GetGroundReactionValues();
2000-05-27 05:48:14 +00:00
}
2001-04-06 22:59:31 +00:00
if (SubSystems & FGAircraft::ssPropulsion) {
outstream << ", ";
outstream << Propulsion->GetPropulsionValues();
1999-09-07 23:15:45 +00:00
}
outstream << endl;
outstream.flush();
1999-09-07 23:15:45 +00:00
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2000-04-24 23:49:06 +00:00
1999-12-20 20:24:49 +00:00
void FGOutput::SocketOutput(void)
{
string asciiData;
2000-04-24 23:49:06 +00:00
/*
2000-10-02 23:07:30 +00:00
if (socket == NULL) return;
1999-12-20 20:24:49 +00:00
socket->Clear();
if (sFirstPass) {
socket->Append("<LABELS>");
socket->Append("Time");
socket->Append("Altitude");
socket->Append("Phi");
socket->Append("Tht");
socket->Append("Psi");
socket->Append("Rho");
socket->Append("Vtotal");
2001-07-10 15:56:38 +00:00
socket->Append("UBody");
socket->Append("VBody");
socket->Append("WBody");
socket->Append("UAero");
socket->Append("VAero");
socket->Append("WAero");
1999-12-20 20:24:49 +00:00
socket->Append("Vn");
socket->Append("Ve");
socket->Append("Vd");
socket->Append("Udot");
socket->Append("Vdot");
socket->Append("Wdot");
socket->Append("P");
socket->Append("Q");
socket->Append("R");
socket->Append("PDot");
socket->Append("QDot");
socket->Append("RDot");
socket->Append("Fx");
socket->Append("Fy");
socket->Append("Fz");
socket->Append("Latitude");
socket->Append("Longitude");
socket->Append("QBar");
socket->Append("Alpha");
socket->Append("L");
socket->Append("M");
socket->Append("N");
2000-01-10 21:07:00 +00:00
socket->Append("Throttle");
socket->Append("Aileron");
socket->Append("Elevator");
socket->Append("Rudder");
1999-12-20 20:24:49 +00:00
sFirstPass = false;
socket->Send();
}
socket->Clear();
socket->Append(State->Getsim_time());
2000-04-28 19:59:46 +00:00
socket->Append(Position->Geth());
1999-12-20 20:24:49 +00:00
socket->Append(Rotation->Getphi());
socket->Append(Rotation->Gettht());
socket->Append(Rotation->Getpsi());
socket->Append(Atmosphere->GetDensity());
2000-04-28 19:59:46 +00:00
socket->Append(Translation->GetVt());
2001-07-10 15:56:38 +00:00
socket->Append(Translation->GetUVW(eU));
socket->Append(Translation->GetUVW(eV));
socket->Append(Translation->GetUVW(eW));
socket->Append(Translation->GetvAero(eU));
socket->Append(Translation->GetvAero(eV));
socket->Append(Translation->GetvAero(eW));
1999-12-20 20:24:49 +00:00
socket->Append(Position->GetVn());
socket->Append(Position->GetVe());
socket->Append(Position->GetVd());
socket->Append(Translation->GetUdot());
socket->Append(Translation->GetVdot());
socket->Append(Translation->GetWdot());
socket->Append(Rotation->GetP());
socket->Append(Rotation->GetQ());
socket->Append(Rotation->GetR());
socket->Append(Rotation->GetPdot());
socket->Append(Rotation->GetQdot());
socket->Append(Rotation->GetRdot());
socket->Append(Aircraft->GetFx());
socket->Append(Aircraft->GetFy());
socket->Append(Aircraft->GetFz());
2000-04-28 19:59:46 +00:00
socket->Append(Position->GetLatitude());
socket->Append(Position->GetLongitude());
socket->Append(Translation->Getqbar());
1999-12-20 20:24:49 +00:00
socket->Append(Translation->Getalpha());
socket->Append(Aircraft->GetL());
socket->Append(Aircraft->GetM());
socket->Append(Aircraft->GetN());
2000-01-10 21:07:00 +00:00
socket->Append(FCS->GetThrottle(0));
socket->Append(FCS->GetDa());
socket->Append(FCS->GetDe());
socket->Append(FCS->GetDr());
2000-04-24 23:49:06 +00:00
socket->Send(); */
1999-12-20 20:24:49 +00:00
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1999-12-20 20:24:49 +00:00
void FGOutput::SocketStatusOutput(string out_str)
{
string asciiData;
2000-10-02 23:07:30 +00:00
if (socket == NULL) return;
1999-12-20 20:24:49 +00:00
socket->Clear();
asciiData = string("<STATUS>") + out_str;
socket->Append(asciiData.c_str());
socket->Send();
}
2000-11-03 23:02:47 +00:00
//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2000-04-24 23:49:06 +00:00
2001-03-30 01:04:50 +00:00
void FGOutput::Debug(void)
{
//TODO: Add your source code here
}