Skip to content

Commit

Permalink
Ensure consistent simpoints default of 200 in all programs matching l…
Browse files Browse the repository at this point in the history
…ims default

Signed-off-by: doluk <[email protected]>
  • Loading branch information
doluk committed Nov 22, 2024
1 parent dee661f commit 491f103
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
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

0 comments on commit 491f103

Please sign in to comment.