Skip to content

Commit

Permalink
Per #2168, update config file version numbers to 11.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnHalleyGotway committed Jun 2, 2023
1 parent dbe3cae commit f3fa585
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion data/config/TCDiagConfig_default
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,6 @@ cira_diag_flag = FALSE;

tmp_dir = "/tmp";
output_prefix = "";
version = "V11.0.0";
version = "V11.1.0";

////////////////////////////////////////////////////////////////////////////////
33 changes: 21 additions & 12 deletions internal/test_unit/config/TCDiagConfig_ian
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//
// Model
//
model = [ "GFSO", "OFCL" ];
model = [ "GFSO" ];

//
// Storm identifier
Expand Down Expand Up @@ -91,15 +91,24 @@ data = {
// If empty, the field is processed for all domains
domain = [];

// Pressure levels to be used, unless overridden below
level = [ "P1000", "P925", "P850", "P700", "P500",
"P400", "P300", "P250", "P200", "P150",
"P100" ];

field = [
{
name = "TMP";
level = ["P500","Z2"];
},
{
name = "RH";
level = "P500";
}
{ name = "TMP"; },
{ name = "UGRD"; },
{ name = "VGRD"; },
{ name = "RH"; },
{ name = "HGT"; },
{ name = "PRMSL"; level = "Z0"; },
{ name = "PWAT"; level = "L0"; },
{ name = "TMP"; level = "Z0"; },
{ name = "TMP"; level = "Z2"; },
{ name = "RH"; level = "Z2"; },
{ name = "UGRD"; level = "Z10"; },
{ name = "VGRD"; level = "Z10"; }
];
}

Expand All @@ -126,13 +135,13 @@ vortex_removal = FALSE;
// Flags to control output files
//
nc_rng_azi_flag = TRUE;
nc_diag_flag = TRUE;
cira_diag_flag = TRUE;
nc_diag_flag = FALSE;
cira_diag_flag = FALSE;

////////////////////////////////////////////////////////////////////////////////

tmp_dir = "/tmp";
output_prefix = "";
version = "V11.0.0";
version = "V11.1.0";

////////////////////////////////////////////////////////////////////////////////

0 comments on commit f3fa585

Please sign in to comment.