Skip to content

Commit

Permalink
Added NNO motion model
Browse files Browse the repository at this point in the history
  • Loading branch information
DominicDirkx committed Sep 20, 2024
1 parent d2b2742 commit c040b59
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/src/astro/observation_models/unitTestIfmsMex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,13 @@ int main( )
// interpolators::cubicSplineInterpolation( ), initialTimeEnvironment, finalTimeEnvironment, 60.0 ));
bodySettings.at( "Earth" )->groundStationSettings = getDsnStationSettings( );
bodySettings.at( "Earth" )->bodyDeformationSettings.push_back( iers2010TidalBodyShapeDeformation( ) );
bodySettings.at( "Earth" )->groundStationSettings.push_back( std::make_shared< GroundStationSettings >(
"NWNORCIA", getCombinedApproximateGroundStationPositions( ).at( "NWNORCIA" ) ) );
auto nnorciaSettings = std::make_shared< GroundStationSettings >(
"NWNORCIA", getCombinedApproximateGroundStationPositions( ).at( "NWNORCIA" ) );
nnorciaSettings->addStationMotionSettings(
std::make_shared<LinearGroundStationMotionSettings>(
( Eigen::Vector3d( ) << -45.00, 10.00, 47.00 ).finished( ) / 1.0E3 / physical_constants::JULIAN_YEAR, 0.0) );
bodySettings.at( "Earth" )->groundStationSettings.push_back( nnorciaSettings );

// std::vector< std::shared_ptr< PanelRadiosityModelSettings > > panelRadiosityModels;
// panelRadiosityModels.push_back(angleBasedThermalPanelRadiosityModelSettings( 95.0, 385.0, 0.95, "Sun" ) );
// panelRadiosityModels.push_back(albedoPanelRadiosityModelSettings( SphericalHarmonicsSurfacePropertyDistributionModel::albedo_dlam1, "Sun" ) );
Expand Down

0 comments on commit c040b59

Please sign in to comment.