Skip to content
Snippets Groups Projects
Commit be8e6d43 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Add fix to deal with output_nml in all prepare_namelist scripts.

parent a7a326d8
No related branches found
No related tags found
No related merge requests found
...@@ -120,7 +120,7 @@ def main(): ...@@ -120,7 +120,7 @@ def main():
""" """
# Process atmosphere namelist # Process atmosphere namelist
atmosphere_namelist = f90nml.read(ATMOSPHERE_NAMELIST_PATH.as_posix()) atmosphere_namelist = f90nml.read(ATMOSPHERE_NAMELIST_PATH.as_posix())
# Convert output_nml to a cogroup. # Convert output_nml to a co-group.
atmosphere_namelist.create_cogroup("output_nml") atmosphere_namelist.create_cogroup("output_nml")
print("Original atmosphere namelist:") print("Original atmosphere namelist:")
print(atmosphere_namelist) print(atmosphere_namelist)
......
...@@ -111,6 +111,8 @@ def main(): ...@@ -111,6 +111,8 @@ def main():
""" """
# Process atmosphere namelist # Process atmosphere namelist
atmosphere_namelist = f90nml.read(ATMOSPHERE_NAMELIST_PATH.as_posix()) atmosphere_namelist = f90nml.read(ATMOSPHERE_NAMELIST_PATH.as_posix())
# Convert output_nml to a co-group.
atmosphere_namelist.create_cogroup("output_nml")
print("Original atmosphere namelist:") print("Original atmosphere namelist:")
print(atmosphere_namelist) print(atmosphere_namelist)
atmosphere_namelist.patch(atmosphere_namelist_replacements) atmosphere_namelist.patch(atmosphere_namelist_replacements)
......
...@@ -125,6 +125,8 @@ def main(): ...@@ -125,6 +125,8 @@ def main():
# Read custom namelist parameters from configuration file # Read custom namelist parameters from configuration file
atmosphere_custom_namelist = read_namelist(atmosphere_namelist_string) atmosphere_custom_namelist = read_namelist(atmosphere_namelist_string)
# Convert output_nml to a co-group.
atmosphere_namelist.create_cogroup("output_nml")
if atmosphere_custom_namelist is not None: if atmosphere_custom_namelist is not None:
try: try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment