Skip to content

Commit

Permalink
Lower minimum post-condtion check for surface pressure to 300 hPa
Browse files Browse the repository at this point in the history
  • Loading branch information
brhillman committed Aug 19, 2024
1 parent 1548120 commit dbb9818
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ void HommeDynamics::initialize_impl (const RunType run_type)
add_postcondition_check<LowerBound>(*get_group_out("Q",pgn).m_bundle,m_phys_grid,0,true);
add_postcondition_check<Interval>(get_field_out("T_mid",pgn),m_phys_grid,100.0, 500.0,false);
add_postcondition_check<Interval>(get_field_out("horiz_winds",pgn),m_phys_grid,-400.0, 400.0,false);
add_postcondition_check<Interval>(get_field_out("ps"),m_phys_grid,40000.0, 120000.0,false);
add_postcondition_check<Interval>(get_field_out("ps"),m_phys_grid,30000.0, 120000.0,false);

// Initialize Rayleigh friction variables
rayleigh_friction_init();
Expand Down

0 comments on commit dbb9818

Please sign in to comment.