Skip to content

Commit

Permalink
Fix supported variables
Browse files Browse the repository at this point in the history
  • Loading branch information
CyprienBosserelle committed Sep 20, 2021
1 parent fee24b4 commit 9e5ebbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion read_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ XBGPUParam readparamstr(std::string line, XBGPUParam param)
{
//Verify that the variable name makes sense?
//Need to add more here
std::vector<std::string> SupportedVarNames = { "hh", "uu", "vv", "wci", "zs", "zb", "cfm", "dzb", "stdep", "Fx", "Fy", "cgx", "cgy", "cx", "cy", "ctheta", "D", "E", "H", "urms", "ueu", "vev", "thetamean", "Hmean", "uumean", "vvmean", "hhmean", "zsmax", "zsmean", "Cmean", "sigm", "k", "c", "kh", "cg", "sinh2kh", "dhdx", "dhdy", "dudx", "dudy", "dvdx", "dvdy", "C", "R", "DR", "ee", "vmageu", "vmagev", "dzsdx", "dzsdy", "dzsdt", "fwm", "hu", "hum", "hv", "hvm", "uv", "vu", "ududx", "vdvdy", "udvdx", "vdudy", "ust", "rr", "kturb", "rolthick", "ceqsg" };
std::vector<std::string> SupportedVarNames = { "hh", "uu", "vv", "wci", "zs", "zb", "cfm", "dzb", "stdep", "Fx", "Fy", "cgx", "cgy", "cx", "cy", "ctheta", "D", "E", "H", "urms", "ueu", "vev", "thetamean", "Hmean", "uumean", "vvmean", "ueumean", "vevmean","hhmean", "zsmax", "zsmean", "Cmean", "sigm", "k", "c", "kh", "cg", "sinh2kh", "dhdx", "dhdy", "dudx", "dudy", "dvdx", "dvdy", "C", "R", "DR", "ee", "vmageu", "vmagev", "dzsdx", "dzsdy", "dzsdt", "fwm", "hu", "hum", "hv", "hvm", "uv", "vu", "ududx", "vdvdy", "udvdx", "vdudy", "ust", "rr", "kturb", "rolthick", "ceqsg" };

for (int isup = 0; isup < SupportedVarNames.size(); isup++)
{
Expand Down

0 comments on commit 9e5ebbe

Please sign in to comment.