...
Code Block | ||
---|---|---|
| ||
# Make sure the flbc_list specifies all the GHGs needed for radiation. my $flbc_list = $nl->get_value('flbc_list'); if (defined $flbc_list) { # If flbc_list has already been defined, check that it contains all # the GHGs needed by the radiation code. foreach my $ghg ('CO2','CH4', 'N2O','CFC11','CFC12') { if ($flbc_list !~ /$ghg/) { die "$ProgName - ERROR: $ghg is missing from flbc_list \n"; } } } else { my $val = "'CO2','CH4','N2O','CFC11','CFC12'"; add_default($nl, 'flbc_list', 'val'=>$val); } |
then, So you also need to remove 'CH4' from the list:
...