-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes ELM namelist for with active FAN model #6151
Conversation
If `use_fan = .true.` in `user_nl_elm`, add settings for the FAN model in `lnd_in`.
|
if( $nl_flags->{'use_fan'} eq ".true." ) { | ||
my $var = "use_fan"; | ||
my $val = $nl->get_value($var); | ||
if( $val eq ".true." ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So it was a perl error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. The information about use_fan
was being extracted from the wrong data structure.
Will this change namelists for the fan test? |
If use_fan = .true. in user_nl_elm, add settings for the FAN model in lnd_in. Fixes #6152 [BFB]
use_fan = .true. now shows up in the elm-fan test. And that test passes and no longer has a namelist diff. |
If
use_fan = .true.
inuser_nl_elm
, add settings for the FAN model inlnd_in
.Fixes #6152
[BFB]