Skip to content

Commit

Permalink
fixes to exports to fire behavior and rt test
Browse files Browse the repository at this point in the history
* fixed coupling flags to write fire exports
* export: 2-m temp and q, surface pressure and rain
* minor fixes in RT for fire

Co-authored-by: Dan Rosen <[email protected]>
  • Loading branch information
masih-e and danrosen25 committed May 20, 2024
1 parent beef326 commit 3cb35b5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FV3
2 changes: 1 addition & 1 deletion fire_behavior
Submodule fire_behavior updated 44 files
+146 −0 .github/workflows/develop_test.yml
+46 −31 .github/workflows/release_test.yml
+19 −9 CMakeLists.txt
+201 −0 LICENSE
+4 −50 README.md
+7 −2 cmake/modules/FireBuildSettings.cmake
+12 −0 compile.sh
+6 −17 driver/advance_mod.F90
+20 −0 driver/fire_behavior.F90
+10 −17 driver/initialize_mod.F90
+2 −6 io/geogrid_mod.F90
+60 −81 io/namelist_mod.F90
+43 −66 io/netcdf_mod.F90
+20 −20 io/stderrout_mod.F90
+8 −8 io/wrf_mod.F90
+57 −89 nuopc/fire_behavior_nuopc.F90
+251 −0 physics/fire_driver_mod.F90
+145 −0 physics/fire_model_mod.F90
+8 −9 physics/fire_physics_mod.F90
+407 −0 physics/fmc_wrffire_mod.F90
+123 −0 physics/fuel_anderson_mod.F90
+0 −356 physics/ignition_line_mod.F
+1,144 −0 physics/level_set_mod.F90
+0 −1,468 physics/module_fr_fire_core.F
+0 −241 physics/module_fr_fire_driver.F
+0 −138 physics/module_fr_fire_fuel_anderson_mod.F
+0 −556 physics/module_fr_fire_fuel_moisture_model.F
+0 −157 physics/module_fr_fire_model.F
+0 −309 physics/ros_wrffire_mod.F
+209 −0 physics/ros_wrffire_mod.F90
+8 −11 share/constants_mod.F90
+45 −0 share/fmc_mod.F90
+127 −0 share/fuel_mod.F90
+46 −0 share/ros_mod.F90
+0 −20 state/Makefile
+260 −0 state/ignition_line_mod.F90
+177 −344 state/state_mod.F90
+201 −0 state/tiles_mod.F90
+2 −2 tests/fd_fire.yaml
+0 −1 tests/test8/namelist.fire
+1 −1 tests/testx/testx.yaml
+0 −7 vendors/.gitignore
+0 −20 vendors/README
+0 −151 vendors/build_libs.s
7 changes: 7 additions & 0 deletions tests/default_vars.sh
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,7 @@ export FV3=true
export S2S=false
export HAFS=false
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=false
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand Down Expand Up @@ -794,6 +795,7 @@ export FV3=true
export S2S=true
export HAFS=false
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=false
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand Down Expand Up @@ -993,6 +995,7 @@ export FV3=false
export S2S=false
export HAFS=false
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=true
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand Down Expand Up @@ -1069,6 +1072,7 @@ export FV3=false
export S2S=false
export HAFS=true
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=true
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand All @@ -1087,6 +1091,7 @@ export FV3=true
export S2S=false
export HAFS=true
export AQM=false
export FIRE_BEHAVIOR=false
export DOCN_CDEPS=true
export CDEPS_INLINE=false
export INPES=$INPES_dflt
Expand All @@ -1105,6 +1110,7 @@ export FV3=true
export S2S=false
export HAFS=true
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=false
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand Down Expand Up @@ -1177,6 +1183,7 @@ export FV3=true
export S2S=false
export HAFS=true
export AQM=false
export FIRE_BEHAVIOR=false
export DATM_CDEPS=false
export DOCN_CDEPS=false
export CDEPS_INLINE=false
Expand Down
1 change: 1 addition & 0 deletions tests/test_changes.list
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cpld_regional_atm_fbh intel

0 comments on commit 3cb35b5

Please sign in to comment.