Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure simpoints default of 200 in all programs like lims #158

Merged
merged 2 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion programs/us_astfem_sim/us_astfem_sim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void US_Astfem_Sim::init_simparams( void )
sp.delay_minutes =( double)(sp.rotorspeed/(60.0*sp.acceleration));// Minimum delay ie. time to accelerate the rotor
simparams.speed_step << sp;

simparams.simpoints = 500; // Initialized number of radial grid points
simparams.simpoints = 200; // Initialized number of radial grid points
simparams.radial_resolution = 0.001; // Increment in radial experimental grid
simparams.meshType = US_SimulationParameters::ASTFEM; // Used for solver option
simparams.gridType = US_SimulationParameters::MOVING; // Used for grid option
Expand Down
2 changes: 1 addition & 1 deletion programs/us_autoflow_analysis/us_autoflow_analysis.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2685,7 +2685,7 @@ void US_Analysis_auto::show_overlay( QString triple_stage )

dbg_level = US_Settings::us_debug();

adv_vals[ "simpoints" ] = "500";
adv_vals[ "simpoints" ] = "200";
adv_vals[ "bandvolume" ] = "0.015";
adv_vals[ "parameter" ] = "0";
adv_vals[ "modelnbr" ] = "0";
Expand Down
2 changes: 1 addition & 1 deletion programs/us_fematch/us_fematch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ US_FeMatch::US_FeMatch() : US_Widgets()
ti_noise.count = 0;
ri_noise.count = 0;

adv_vals[ "simpoints" ] = "500";
adv_vals[ "simpoints" ] = "200";
adv_vals[ "bandvolume" ] = "0.015";
adv_vals[ "parameter" ] = "0";
adv_vals[ "modelnbr" ] = "0";
Expand Down
2 changes: 1 addition & 1 deletion programs/us_mwl_species_sim/us_mwl_species_sim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ void US_MwlSpeciesSim::init_simparams( void )

simparams.speed_step << sp;

simparams.simpoints = 500; // Initialized number of radial grid points
simparams.simpoints = 200; // Initialized number of radial grid points
simparams.radial_resolution = 0.001; // Increment in radial experimental grid
simparams.meshType = US_SimulationParameters::ASTFEM;// Used for solver option
simparams.gridType = US_SimulationParameters::MOVING;// Used for grid option
Expand Down
2 changes: 1 addition & 1 deletion programs/us_reporter_gmp/us_reporter_gmp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3855,7 +3855,7 @@ void US_ReporterGMP::simulate_triple( const QString triplesname, QString stage_m

dbg_level = US_Settings::us_debug();

adv_vals[ "simpoints" ] = "500";
adv_vals[ "simpoints" ] = "200";
adv_vals[ "bandvolume" ] = "0.015";
adv_vals[ "parameter" ] = "0";
adv_vals[ "modelnbr" ] = "0";
Expand Down